home *** CD-ROM | disk | FTP | other *** search
/ Netware Super Library / Netware Super Library.iso / mis_cnvt / txt2db / rddsys.prg < prev    next >
Text File  |  1994-01-05  |  655b  |  27 lines

  1. /***
  2. *
  3. *  RddSys.prg
  4. *
  5. *  This program is run each time your application is started to setup
  6. *  the proper default driver.  You should modify a copy of this file
  7. *  if you wish to use a default RDD other than DBFNTX.
  8. *
  9. *  Copyright (c) 1993, Computer Associates International, Inc.
  10. *  All rights reserved.
  11. *
  12. *  Compile with /n /w
  13. */
  14.  
  15. #include "txt2dbf.ch"
  16.  
  17. ANNOUNCE RDDSYS                        // This line must not change
  18.  
  19. INIT PROCEDURE RddInit
  20.    REQUEST DBFNTX                      // Request desired RDD
  21.                                
  22.    rddSetDefault( "DBFNTX" )           // Set default RDD
  23.  
  24. RETURN
  25.  
  26. // eof: rddsys.prg
  27.